home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_061 / microemacs / makefile < prev    next >
Makefile  |  1992-05-06  |  630b  |  22 lines

  1. CC=        cc
  2. LD=        ln
  3.  
  4. CFLAGS=        +l -Z6000
  5.  
  6. OFILES=        ansi.o basic.o bind.o buffer.o display.o file.o \
  7.         fileio.o hp150.o line.o lock.o main.o random.o region.o \
  8.         search.o spawn.o tcap.o termio.o vt52.o window.o word.o \
  9.         exec.o eval.o isearch.o input.o crypt.o
  10.  
  11. CFILES=        ansi.c basic.c bind.c buffer.c display.c  file.c \
  12.         fileio.c hp150.c line.c lock.c main.c random.c region.c \
  13.         search.c spawn.c tcap.c termio.c vt52.c window.c word.c \
  14.         exec.c eval.c isearch.c input.c crypt.c
  15.  
  16. HFILES=        estruct.h edef.h efunc.h epath.h ebind.h evar.h esearch.h
  17.  
  18. ram:emacs:    $(OFILES)
  19.         $(LD) -o ram:emacs $(OFILES) -lc32
  20.  
  21. $(OFILES):    $(HFILES)
  22.